home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Windows / GrayRegion.cp < prev    next >
Text File  |  1997-06-28  |  289b  |  22 lines

  1. // GrayRegion.cp
  2.  
  3. #ifndef GrayRegion_h
  4. #include "GrayRegion.h"
  5. #endif
  6.  
  7. GrayRegion::GrayRegion()
  8.   : region( GetGrayRgn() )
  9.   {
  10.   }
  11.  
  12. const GrayRegion& GrayRegion::The()
  13.   {
  14.     static GrayRegion gray;
  15.     return gray;
  16.   }
  17.  
  18. Rectangle GrayRegion::Bounds() const
  19.   {
  20.     return (*region)->rgnBBox;
  21.   }
  22.